@charset "utf-8";
/* CSS Document */
topnav {
    position: relative; /* Ensure z-index applies */
    z-index: 10; /* Higher z-index to stay on top */
}

nav {
    z-index: 10; /* Ensure it remains above other elements */
}
@media screen and (max-width: 1200px) {
	
  banner {
   max-width: 100%;
	}}
 banner {
            position: relative;
	
            /*background: url('videos/drink trick.mp4') no-repeat center center/cover;*/
            color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Moves content closer to the top */
            align-items: center;
            padding-top: 40vh; /* Adds space from the top for better centering */
        }
        banner h1 {
            font-size: 3.5rem;
            animation: fadeIn 2s ease;
        }
        banner p {
            font-size: 1.5rem;
            margin-top: 10px;
            animation: fadeIn 3s ease;
        }


        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

      body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            background-color: #121212;
            color: #f5f5f5;
            overflow-x: hidden;
        }
    

        section {
            padding: 50px 20px;
            text-align: center;
        }

        .portfolio {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .portfolio-item {
            background: #1f1f1f;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .portfolio-item:hover {
            transform: scale(1.05);
        }
        .portfolio-item img {
            max-width: 100%;
            border-radius: 8px;
        }
        .portfolio-item h3 {
            margin: 15px 0 10px;
            color: #ff6f61;
        }

     